home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Games: Greatest Hits 1996
/
Amiga Games: Greatest Hits 1996.iso
/
archive
/
userbox
/
publicdomain
/
afrikaans.lha
/
Afrikaans
/
Install
< prev
next >
Wrap
Text File
|
1996-05-01
|
852b
|
37 lines
; Installation script for an AlphaSpell dictionary
(transcript "Installing " @app-name " ...")
(if (exists "AlphaSpell:")
(
(set @default-dest
(askdir
(prompt "Install the Dictionary where?")
(help @askdir-help)
(default (tackon "AlphaSpell:Dict" @app-name))
(newpath)
)
)
(if (not (exists @default-dest (noreq)))
(makedir @default-dest)
)
(copyfiles
(prompt "Copying AlphaSpell Dictionary")
(help @copyfiles-help)
(source "Dictionary/")
(dest @default-dest)
(confirm)
(all)
)
)
(message
"The script will not install the " @app-name " dictionary until "
"AlphaSpell 6 is installed."
)
)
(exit)